home *** CD-ROM | disk | FTP | other *** search
- package javax.swing;
-
- import javax.swing.text.DefaultEditorKit;
- import javax.swing.text.Element;
- import javax.swing.text.View;
- import javax.swing.text.ViewFactory;
- import javax.swing.text.WrappedPlainView;
-
- class JEditorPane$PlainEditorKit extends DefaultEditorKit implements ViewFactory {
- public Object clone() {
- return new JEditorPane$PlainEditorKit();
- }
-
- public View create(Element var1) {
- return new WrappedPlainView(var1);
- }
-
- public ViewFactory getViewFactory() {
- return this;
- }
- }
-